home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
PROGRAMM
/
PASCAL
/
0635.ZIP
/
BEEP.INC
< prev
next >
Wrap
Text File
|
1987-07-24
|
159b
|
8 lines
Procedure Beep(Tone,Time:Integer);
{** Rings a bell at Tone frequency for an interval of Time **}
Begin
Sound(Tone);
Delay(Time);
Nosound;
End; {Beep}